UNPKG
@oreodusk/oreonyx
Version:
latest (1.2.0)
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
UI module bundler helper
github.com/toerso/oreonnyx
toerso/oreonnyx
@oreodusk/oreonyx
/
src
/
webpack
/
Extra.js
11 lines
(8 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
//This file contains all extra configuration both browser and runtime
const
NodeExternal
=
require
(
'webpack-node-externals'
);
class
Extra
{
nodeExternals
(
) {
return
NodeExternal
({
allowlist
: [
/^(.(?!.*\.css$))*$/i
]}); } }
module
.
exports
=
Extra
;