mirror of
https://github.com/lukin/keywind.git
synced 2025-01-10 18:06:23 +00:00
22 lines
402 B
JavaScript
22 lines
402 B
JavaScript
|
/**
|
||
|
* @type { import("snowpack").SnowpackUserConfig }
|
||
|
*/
|
||
|
module.exports = {
|
||
|
buildOptions: {
|
||
|
out: './theme/keywind/login/resources',
|
||
|
},
|
||
|
devOptions: {
|
||
|
tailwindConfig: './tailwind.config.js',
|
||
|
},
|
||
|
mount: {
|
||
|
src: '/dist',
|
||
|
},
|
||
|
optimize: {
|
||
|
bundle: true,
|
||
|
entrypoints: ['./src/index.js'],
|
||
|
minify: true,
|
||
|
target: 'es2017',
|
||
|
},
|
||
|
plugins: ['@snowpack/plugin-postcss'],
|
||
|
};
|