-
-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathwebpack.mix.js
34 lines (27 loc) · 823 Bytes
/
webpack.mix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
let mix = require('laravel-mix');
let path = require('path');
let postCss = require('@tailwindcss/postcss');
mix.setResourceRoot('../');
mix.setPublicPath(path.resolve('./'));
mix.webpackConfig({
watchOptions: { ignored: [
path.posix.resolve(__dirname, './node_modules'),
path.posix.resolve(__dirname, './css'),
path.posix.resolve(__dirname, './js')
] }
});
mix.js('resources/js/app.js', 'js');
mix.postCss("resources/css/app.css", "css", postCss);
mix.postCss("resources/css/editor-style.css", "css", postCss);
// mix.browserSync({
// proxy: 'http://tailpress.test',
// host: 'tailpress.test',
// open: 'external',
// port: 8000,
// files: ["*.php", "**/*.php"]
// });
if (mix.inProduction()) {
mix.version();
} else {
mix.options({ manifest: false });
}