mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-15 09:41: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',
|
||
|
},
|
||
|
};
|