mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-10 18:33:51 +02:00
80 lines
3.4 KiB
JavaScript
80 lines
3.4 KiB
JavaScript
var path = require('path');
|
|
var mix = require('laravel-mix');
|
|
var HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
|
|
mix.disableNotifications();
|
|
|
|
mix.options({
|
|
processCssUrls: false
|
|
});
|
|
|
|
mix.override(function (webpackConfig) {
|
|
webpackConfig.resolve.alias['@'] = path.resolve('src'); // scss
|
|
webpackConfig.module.rules.push({
|
|
test: /\.pug$/,
|
|
use: 'pug-loader'
|
|
});
|
|
webpackConfig.plugins.push(new HtmlWebpackPlugin({
|
|
filename: 'dist/index.html',
|
|
template: 'src/index.pug',
|
|
inject: false,
|
|
minify: false
|
|
}));
|
|
webpackConfig.plugins.push(new HtmlWebpackPlugin({
|
|
filename: 'dist/vr.html',
|
|
template: 'src/vr.pug',
|
|
inject: false,
|
|
minify: false
|
|
}));
|
|
});
|
|
|
|
// vendor
|
|
mix.copyDirectory('node_modules/element-ui/lib/theme-chalk/fonts/', 'dist/fonts/');
|
|
mix.copyDirectory('node_modules/famfamfam-flags/dist/sprite/famfamfam-flags.png', 'dist/');
|
|
|
|
// app
|
|
mix.copyDirectory('images/', 'dist/images/');
|
|
mix.js('src/app.js', 'dist/');
|
|
mix.js('src/vr.js', 'dist/');
|
|
mix.sass('src/app.scss', 'dist/');
|
|
mix.sass('src/app.dark.scss', 'dist/');
|
|
mix.sass('src/vr.scss', 'dist/');
|
|
|
|
// Full API
|
|
// mix.js(src, output);
|
|
// mix.react(src, output); <-- Identical to mix.js(), but registers React Babel compilation.
|
|
// mix.preact(src, output); <-- Identical to mix.js(), but registers Preact compilation.
|
|
// mix.coffee(src, output); <-- Identical to mix.js(), but registers CoffeeScript compilation.
|
|
// mix.ts(src, output); <-- TypeScript support. Requires tsconfig.json to exist in the same folder as webpack.mix.js
|
|
// mix.extract(vendorLibs);
|
|
// mix.sass(src, output);
|
|
// mix.less(src, output);
|
|
// mix.stylus(src, output);
|
|
// mix.postCss(src, output, [require('postcss-some-plugin')()]);
|
|
// mix.browserSync('my-site.test');
|
|
// mix.combine(files, destination);
|
|
// mix.babel(files, destination); <-- Identical to mix.combine(), but also includes Babel compilation.
|
|
// mix.copy(from, to);
|
|
// mix.copyDirectory(fromDir, toDir);
|
|
// mix.minify(file);
|
|
// mix.sourceMaps(); // Enable sourcemaps
|
|
// mix.version(); // Enable versioning.
|
|
// mix.disableNotifications();
|
|
// mix.setPublicPath('path/to/public');
|
|
// mix.setResourceRoot('prefix/for/resource/locators');
|
|
// mix.autoload({}); <-- Will be passed to Webpack's ProvidePlugin.
|
|
// mix.webpackConfig({}); <-- Override webpack.config.js, without editing the file directly.
|
|
// mix.babelConfig({}); <-- Merge extra Babel configuration (plugins, etc.) with Mix's default.
|
|
// mix.then(function () {}) <-- Will be triggered each time Webpack finishes building.
|
|
// mix.override(function (webpackConfig) {}) <-- Will be triggered once the webpack config object has been fully generated by Mix.
|
|
// mix.dump(); <-- Dump the generated webpack config object to the console.
|
|
// mix.extend(name, handler) <-- Extend Mix's API with your own components.
|
|
// mix.options({
|
|
// extractVueStyles: false, // Extract .vue component styling to file, rather than inline.
|
|
// globalVueStyles: file, // Variables file to be imported in every component.
|
|
// processCssUrls: true, // Process/optimize relative stylesheet url()'s. Set to false, if you don't want them touched.
|
|
// purifyCss: false, // Remove unused CSS selectors.
|
|
// terser: {}, // Terser-specific options. https://github.com/webpack-contrib/terser-webpack-plugin#options
|
|
// postCss: [] // Post-CSS options: https://github.com/postcss/postcss/blob/master/docs/plugins.md
|
|
// });
|