11 lines
268 B
TypeScript
11 lines
268 B
TypeScript
|
|
import { defineConfig } from 'jsrepo';
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
// configure where stuff comes from here
|
||
|
|
registries: ['https://vue-bits.dev/r'],
|
||
|
|
// configure where stuff goes here
|
||
|
|
paths: {
|
||
|
|
component: 'src/components/vue-bits',
|
||
|
|
},
|
||
|
|
});
|