wip
This commit is contained in:
parent
35a1087889
commit
3009e5a5e3
222 changed files with 1032 additions and 7838 deletions
41
webpack.config.js
Normal file
41
webpack.config.js
Normal file
|
@ -0,0 +1,41 @@
|
|||
var Encore = require('@symfony/webpack-encore');
|
||||
var glob = require('glob-all');
|
||||
var path = require('path');
|
||||
var PurgecssPlugin = require('purgecss-webpack-plugin');
|
||||
|
||||
class TailwindExtractor {
|
||||
static extract(content) {
|
||||
return content.match(/[A-z0-9-:\/]+/g);
|
||||
}
|
||||
}
|
||||
|
||||
Encore.cleanupOutputBeforeBuild()
|
||||
.setOutputPath('source/build/')
|
||||
.setPublicPath('/build')
|
||||
.enableLessLoader()
|
||||
.addEntry('js/site', './assets/js/main.js')
|
||||
.addStyleEntry('css/site', './assets/less/main.less')
|
||||
.enablePostCssLoader(function(options) {
|
||||
options.config = {
|
||||
path: 'postcss.config.js'
|
||||
};
|
||||
})
|
||||
.enableSourceMaps(!Encore.isProduction());
|
||||
|
||||
if (Encore.isProduction()) {
|
||||
Encore.addPlugin(
|
||||
new PurgecssPlugin({
|
||||
paths: glob.sync([
|
||||
path.join(__dirname, "output_*/**/*.html"),
|
||||
]),
|
||||
extractors: [
|
||||
{
|
||||
extractor: TailwindExtractor,
|
||||
extensions: ['twig', 'html', 'md']
|
||||
}
|
||||
]
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
module.exports = Encore.getWebpackConfig();
|
Loading…
Add table
Add a link
Reference in a new issue