- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
import { BASE_CONFIG, PACKAGE_JSON } from './config.base.js';
|
|
|
|
export default {
|
|
...BASE_CONFIG,
|
|
output: {
|
|
...BASE_CONFIG.output,
|
|
file: PACKAGE_JSON.browser,
|
|
format: 'umd',
|
|
},
|
|
};
|