This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { dependencies } from './package.json' | |
export default defineConfig({ | |
build: { | |
rollupOptions: { | |
output: { | |
manualChunks: { | |
...Object.fromEntries( | |
Object.keys(dependencies).map((key) => [key, [key]]) | |
), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
* Created by: Daniel Flynn | |
* Date: Mar 04, 2013 | |
* jQuery plugin for a lazy loading slideshow | |
* Assumes that the slides or content is in order and has a data-src attribute. | |
* | |
* Currently is only working with images as content. Other file types will be added | |
* in as development continues | |
* |