mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
17 lines
371 B
JavaScript
17 lines
371 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 = {
|
|
watchGlob: ['demos/**/*', '/dist/***/*', 'src/**/*.html']
|
|
}
|