27 lines
692 B
JavaScript
27 lines
692 B
JavaScript
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Browser-sync config file
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| For up-to-date information about the options:
|
||
|
| http://www.browsersync.io/docs/options/
|
||
|
|
|
||
|
| There are more options than you see here, these are just the ones that are
|
||
|
| set internally. See the website for more info.
|
||
|
|
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
const tailwindConfig = require('./tailwind.config.js');
|
||
|
|
||
|
module.exports = {
|
||
|
port: 8383,
|
||
|
ui: false,
|
||
|
logSnippet: false,
|
||
|
open: false,
|
||
|
reloadOnRestart: true,
|
||
|
files: [
|
||
|
'../static/css/dist/styles.css',
|
||
|
...tailwindConfig.purge
|
||
|
]
|
||
|
};
|