mirror of
https://github.com/lukin/keywind.git
synced 2025-01-09 09:26:24 +00:00
21 lines
399 B
JavaScript
21 lines
399 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: 'es6',
|
|
},
|
|
plugins: ['@snowpack/plugin-postcss'],
|
|
};
|