You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.7 KiB
68 lines
1.7 KiB
const mix = require('laravel-mix')
|
|
const path = require('path')
|
|
|
|
require('laravel-mix-purgecss')
|
|
|
|
// plugins
|
|
const SvgSpritemapPlugin = require('svg-spritemap-webpack-plugin')
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Mix Asset Management
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Mix provides a clean, fluent API for defining some Webpack build steps
|
|
| for your Laravel applications. By default, we are compiling the CSS
|
|
| file for the application as well as bundling up all the JS files.
|
|
|
|
|
*/
|
|
|
|
|
|
mix.webpackConfig({
|
|
module: {
|
|
rules: [{
|
|
test: /\.riot$/,
|
|
use: [{
|
|
loader: '@riotjs/webpack-loader',
|
|
options: {
|
|
hot: false
|
|
}
|
|
}]
|
|
}
|
|
]},
|
|
plugins: [
|
|
new SvgSpritemapPlugin('node_modules/@tiny-components/plain-ui/src/icons/mono-icons/svg/*.svg', {
|
|
output: {
|
|
filename: 'public/symbol-defs.svg',
|
|
chunk: {
|
|
keep: true
|
|
}
|
|
},
|
|
sprite: {
|
|
prefix: 'icon-'
|
|
}
|
|
})
|
|
]
|
|
})
|
|
|
|
mix
|
|
.setPublicPath('../../')
|
|
.js('js/app.js', 'public/js')
|
|
.sass('scss/styles.scss', 'public/css')
|
|
.purgeCss({
|
|
extend: {
|
|
content: [
|
|
path.join(__dirname, '**/*.riot'),
|
|
path.join(__dirname, '../server/views/**/*.liquid')
|
|
]
|
|
}
|
|
})
|
|
.options({
|
|
terser: {
|
|
extractComments: false,
|
|
},
|
|
processCssUrls: false
|
|
})
|
|
.copyDirectory('node_modules/@tiny-components/plain-ui/src/fonts/**', '../../public/css')
|
|
.version()
|