enable hmr

This commit is contained in:
Ray Elliott 2021-03-27 18:23:39 +00:00
parent 9bc85ca669
commit dac9be1b01
6 changed files with 1005 additions and 9 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
assets/
mix-manifest.json
/hot

View File

@ -5,6 +5,7 @@ This is a starter theme for October CMS that includes:
- Webpack (using Laravel Mix)
- PostCSS
- Hot module reloading
To use it:

996
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,11 +5,13 @@
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.2.2",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.13",
"postcss": "^8.2.8",

View File

@ -1,7 +1,7 @@
/* css to go here */
:root {
@mixin defineHex --test-hsl, #00ff00;
@mixin defineHex --test-hsl, #0000ff;
}
body {

View File

@ -2,13 +2,9 @@ let mix = require('laravel-mix');
mix.options({
processCssUrls: false,
autoprefixer: {
enabled: true,
options: {
overrideBrowserslist: ['last 2 versions', '> 1%'],
cascade: true,
grid: true,
}
hmrOptions: {
host: 'october.home',
port: '8080'
},
})
.setPublicPath('/')