mirror of
https://github.com/coder/code-server.git
synced 2025-09-23 17:54:36 +08:00
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
module.exports = function(source) {
|
|
if (this.resourcePath.endsWith(".ts")) {
|
|
this.resourcePath = this.resourcePath.replace(".ts", ".css");
|
|
}
|
|
return `module.exports = require("${this.resourcePath}");`;
|
|
};
|