We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5588063 commit 47f9babCopy full SHA for 47f9bab
index.js
@@ -46,6 +46,13 @@ async function create() {
46
'Copied .gitignore successfully!'
47
);
48
49
+ // Copy .npmrc
50
+ await writeFile(
51
+ projectDir + '/.npmrc',
52
+ await getRemoteContent('https://raw.githubusercontent.com/lenneTech/nuxt-base-starter/refs/heads/main/nuxt-base-template/.npmrc'),
53
+ 'Copied .npmrc successfully!'
54
+ );
55
+
56
// Copy .env
57
await copyFiles(__dirname + '/nuxt-base-template/.env.example', projectDir + '/.env', 'Copied .env successfully!');
58
0 commit comments