depot/web/quotes/theme/static_src/bs.config.js
2024-08-04 18:51:12 +01:00

27 lines
696 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.content,
]
};