sham-ui-templates-loader
v5.0.0-alpha.1
Published
Webpack loader for shamui-templates
Downloads
17
Readme
sham-ui-templates loader for webpack
npm install sham-ui-templates-loader --save
Usage
module.exports = {
...
module: {
rules: [
{
test: /\.sht$/,
loader: 'sham-ui-templates-loader'
},
{
test: /\.sfc$/,
use: [
{ loader: 'babel-loader' },
{
loader: 'sham-ui-templates-loader',
options: {
asModule: false,
asSingleFileComponent: true
}
}
]
}
]
},
...
};
Configuration
Add sham-ui
section to your webpack.config.js
:
'sham-ui': {
globals: ['window'],
transforms: [...]
}