Voter App Tutorial Issues

I have been following the voter app tutorial here and have run into several issues.
Disclaimer: I have never used vue before now and I have little experience with JavaScript. I am running starport on an Ubuntu terminal served using WSL2

npm run serve has been throwing errors ever since I made the changes to the vue client that were described in the tutorial. I have followed the tutorial to the letter and haven’t deviated.

And the logs showed this

0 info it worked if it ends with ok
1 verbose cli [
1 verbose cli ‘/home/nick/.nvm/versions/node/v14.17.6/bin/node’,
1 verbose cli ‘/home/nick/.nvm/versions/node/v14.17.6/bin/npm’,
1 verbose cli ‘run’,
1 verbose cli ‘serve’
1 verbose cli ]
2 info using npm@6.14.15
3 info using node@v14.17.6
4 verbose run-script [ ‘preserve’, ‘serve’, ‘postserve’ ]
5 info lifecycle @starport/template@0.1.49~preserve: @starport/template@0.1.49
6 info lifecycle @starport/template@0.1.49~serve: @starport/template@0.1.49
7 verbose lifecycle @starport/template@0.1.49~serve: unsafe-perm in lifecycle true
8 verbose lifecycle @starport/template@0.1.49~serve: PATH: /home/nick/.nvm/versions/node/v14.17.6/lib/node_modules/npm/node_modules/npm-lifecycle/node-gyp-bin:/mnt/c/users/nicki/linux/votingApp/voter/vue/node_modules/.bin:/home/nick/.nvm/versions/node/v14.17.6/bin:/home/nick/go/bin:/usr/local/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/mnt/c/Program Files/WindowsApps/Microsoft.WindowsTerminal_1.8.1521.0_x64__8wekyb3d8bbwe:/mnt/c/windows/system32:/mnt/c/windows:/mnt/c/windows/System32/Wbem:/mnt/c/windows/System32/WindowsPowerShell/v1.0/:/mnt/c/windows/System32/OpenSSH/:/mnt/c/Program Files/Go/bin:/mnt/c/Program Files (x86)/Intel/Intel(R) Management Engine Components/DAL:/mnt/c/Program Files/Intel/Intel(R) Management Engine Components/DAL:/mnt/c/Program Files/Git/cmd:/mnt/c/ProgramData/chocolatey/bin:/mnt/c/Android_sdk/cmdline-tools/tools/bin:/mnt/c/Program Files/nodejs/:/mnt/c/Users/nicki/AppData/Local/Programs/Python/Python39/Scripts/:/mnt/c/Users/nicki/AppData/Local/Programs/Python/Python39/:/mnt/c/Users/nicki/AppData/Local/Microsoft/WindowsApps:/mnt/c/flutter/bin:/mnt/c/TDM-GCC-64/bin:/mnt/c/Program Files/Sublime Text:/mnt/c/Users/nicki/go/bin:/mnt/c/Users/nicki/youtube-dl:/mnt/c/Users/nicki/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/Users/nicki/AppData/Local/bin/NASM:/mnt/c/Android_sdk/cmdline-tools/tools/bin:/mnt/c/Users/nicki/jdk1.8.0_202/bin:/mnt/c/sqlite:/mnt/c/Users/nicki/AppData/Roaming/npm:/snap/bin
9 verbose lifecycle @starport/template@0.1.49~serve: CWD: /mnt/c/users/nicki/linux/votingApp/voter/vue
10 silly lifecycle @starport/template@0.1.49~serve: Args: [ ‘-c’, ‘vue-cli-service serve’ ]
11 silly lifecycle @starport/template@0.1.49~serve: Returned: code: 1 signal: null
12 info lifecycle @starport/template@0.1.49~serve: Failed to exec serve script
13 verbose stack Error: @starport/template@0.1.49 serve: vue-cli-service serve
13 verbose stack Exit status 1
13 verbose stack at EventEmitter. (/home/nick/.nvm/versions/node/v14.17.6/lib/node_modules/npm/node_modules/npm-lifecycle/index.js:332:16)
13 verbose stack at EventEmitter.emit (events.js:400:28)
13 verbose stack at ChildProcess. (/home/nick/.nvm/versions/node/v14.17.6/lib/node_modules/npm/node_modules/npm-lifecycle/lib/spawn.js:55:14)
13 verbose stack at ChildProcess.emit (events.js:400:28)
13 verbose stack at maybeClose (internal/child_process.js:1055:16)
13 verbose stack at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5)
14 verbose pkgid @starport/template@0.1.49
15 verbose cwd /mnt/c/users/nicki/linux/votingApp/voter/vue
16 verbose Linux 5.4.72-microsoft-standard-WSL2
17 verbose argv “/home/nick/.nvm/versions/node/v14.17.6/bin/node” “/home/nick/.nvm/versions/node/v14.17.6/bin/npm” “run” “serve”
18 verbose node v14.17.6
19 verbose npm v6.14.15
20 error code ELIFECYCLE
21 error errno 1
22 error @starport/template@0.1.49 serve: vue-cli-service serve
22 error Exit status 1
23 error Failed at the @starport/template@0.1.49 serve script.
23 error This is probably not a problem with npm. There is likely additional logging output above.
24 verbose exit [ 1, true ]

Before that, some frontend features of the application did not display as in the tutorial. When I created the poll and vote types, I did not see any form in the Custom Types page on the vue app.