mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
exports.config = {
|
|
namespace: 'IonicAngular',
|
|
buildDir: 'dist',
|
|
publicPath: '/dist',
|
|
bundles: [
|
|
{ components: ['ion-badge'] }
|
|
],
|
|
collections: [
|
|
{ name: '@ionic/core', includeBundledOnly: true }
|
|
],
|
|
preamble: '(C) Ionic http://ionicframework.com - MIT License'
|
|
};
|
|
|
|
exports.devServer = {
|
|
root: '.',
|
|
watchGlob: ['dist/*.*', 'dist/ionic/**/**', 'src/**/*.html']
|
|
};
|