mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-14 01:01:26 +00:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
import { sassPlugin } from 'esbuild-sass-plugin';
|
|
|
|
export default {
|
|
keepNames: true,
|
|
resolveExtensions: ['.ts', '.js', '.tsx', '.jsx'],
|
|
plugins: [sassPlugin()],
|
|
define: {
|
|
'process.env.NODE_ENV': '"production"',
|
|
'window.process.env.DEBUG': 'undefined',
|
|
},
|
|
};
|